home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / lisp / eulisp / you-075a.lha / you-075a / lex_global.h < prev    next >
C/C++ Source or Header  |  1992-06-18  |  496b  |  23 lines

  1. /* $Id: lex_global.h,v 1.1 1991/08/12 16:49:43 pab Exp $ */
  2. /* $Log: lex_global.h,v $
  3.  * Revision 1.1  1991/08/12  16:49:43  pab
  4.  * Initial revision
  5.  *
  6.  * Revision 1.2  1991/02/11  17:56:59  is
  7.  * Added ID and LOG headers
  8.  *
  9. */
  10.  
  11. typedef struct 
  12. {
  13.   int int_val;              /* used in integers and rational numerator */
  14.   double float_val;
  15.   LispObject string_val;        
  16.   char *sym_val;
  17.   char char_val;
  18.   int  rat_den_val;         /* used in rational denominators           */
  19. } pptoken;
  20.  
  21.  
  22.  
  23.